home *** CD-ROM | disk | FTP | other *** search
/ Internet News 2001 March / Internet News 2001-03 - CD-ROM.rar / IN200103.ISO / Linux / ETLinux / _7eboot-0.70a.flp / init / CONFIG next >
Text File  |  1999-06-27  |  1KB  |  65 lines

  1. ### Trinux configuration script 
  2.  
  3. echo "Insert boot floppy and hit RETURN..."
  4. read blah
  5.  
  6. mount -t msdos /dev/fd0 /boot
  7.  
  8. #echo -n "Enable IP forwarding? "
  9. #read what
  10. #if [ "$what" = "y" ]
  11. #then
  12. #    echo
  13. #    cp /dev/null > /boot/conf/ipforward
  14. #fi
  15. echo "Selecting package source..."; echo
  16. echo "-----------------------------------------"
  17. echo "[1] Floppies using data disk"
  18. echo "[2] Hard drive from a DOS/Windows partition"
  19. echo "[3] Network loading from a web/FTP server"
  20. echo "-----------------------------------------"
  21. echo -n "Enter selection: "
  22. read what
  23. if [ "$what" = "3" ]
  24. then
  25.     cp /dev/null > /boot/conf/netload
  26.     echo -n "Enter URL (be sure to include the last slash): "
  27.     read url   
  28.     echo $url > /boot/conf/url
  29. fi
  30.  
  31. if ["$what" = "2" ]
  32. then 
  33.     cp /dev/null > /boot/conf/hdload
  34.     echo -n "Enter device: "
  35.     read $device
  36.     if mount -t msdos $device /mnt
  37.     then
  38.         echo "$device was mounted sucessfully"
  39.         echo $device > /boot/conf/device
  40.         umount /mnt
  41.     else
  42.         echo "Device was not mounted sucessfully"
  43.         echo "Try again upon reboot"
  44.     fi
  45. fi
  46.  
  47. echo "Configuring your network device..."
  48. if [ -f /boot/conf/dhcp ]
  49. then
  50.     echo "DHCP is currently the default"
  51.     echo -n "Is that what you want? [y/n] "
  52.     read ok
  53.     if [ "$ok" != "y" ]
  54.     then
  55.         rm /boot/conf/dhcp
  56.  
  57.     else
  58.  
  59.     fi
  60. fi
  61. echo
  62. echo "These settings will be in place the next time you reboot."
  63. echo
  64.  
  65.